home *** CD-ROM | disk | FTP | other *** search
- function c_check()
- {
- if(_root.last_bounce != 1 && _root.no_bounce != true)
- {
- var _loc4_ = this._y - _parent.ball_mov._y;
- var _loc5_ = _parent.ball_mov._x - this._x;
- if(_loc4_ > 209)
- {
- _root.control_mov.bounce_above();
- }
- else
- {
- _root.control_mov.bounce_back();
- }
- _root.last_bounce = 1;
- }
- }
- function close_check()
- {
- var _loc3_ = _parent.ball_mov._x - this._x;
- if(_loc3_ > -177 && _loc3_ < 153)
- {
- _parent.ball_mov._x = -177;
- }
- }
- hit_mov._visible = 0;
-